home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
ip
/
ka9q
/
bmdist.arc
/
MS.MK
< prev
next >
Wrap
Text File
|
1988-04-12
|
778b
|
37 lines
#
# Makefile for Bdale's Mailer
#
# for more info see bm.doc and smtp.doc in the documentation package
# if you change the makefile, do a make clean before you do a make.
# This makefile for Microsoft C using ndmake.
#
CFLAGS= -DMSDOS -DMICROSOFT
HDRS= bm.h header.h
OBJS= main.obj send.obj pc.obj bmutil.obj version.obj header.obj \
files.obj getopt.obj
all: mbm.exe
mbm.exe: $(OBJS)
link /NOI /STACK:8192 $(OBJS), mbm.exe;
clean:
del *.obj
del *.exe
del *.sym
#
# dependencies - please keep up to date!
#
bmutil.obj: bmutil.c bm.h header.h
pc.obj: pc.c
main.obj: main.c bm.h
send.obj: send.c bm.h
header.obj: header.c header.h
files.obj: files.c
getopt.obj: getopt.c
.c.obj:
cl -c ${CFLAGS} $<
.SUFFIXES: .exe .obj .c .asm